machine learning recipe
Free Book: Statistics -- New Foundations, Toolbox, and Machine Learning Recipes
This book is intended for busy professionals working with data of any kind: engineers, BI analysts, statisticians, operations research, AI and machine learning professionals, economists, data scientists, biologists, and quants, ranging from beginners to executives. In about 300 pages and 28 chapters it covers many new topics, offering a fresh perspective on the subject, including rules of thumb and recipes that are easy to automate or integrate in black-box systems, as well as new model-free, data-driven foundations to statistical science and predictive analytics. The approach focuses on robust techniques; it is bottom-up (from applications to theory), in contrast to the traditional top-down approach. The material is accessible to practitioners with a one-year college-level exposure to statistics and probability. The compact and tutorial style, featuring many applications with numerous illustrations, is aimed at practitioners, researchers, and executives in various quantitative fields.
Intro to Feature Engineering with TensorFlow - Machine Learning Recipes #9
Here's an intro to techniques you can use to represent your features - including Bucketing, Crossing, Hashing, and Embedding - and utilities TensorFlow provides to help. Also included is a walkthrough of using TensorFlow Estimators to classify structured data. You can find Josh on Twitter: https://twitter.com/random_forests See Josh as a guest speaker in Week 2 of the openSAP course: https://goo.gl/UGGcX7 Check out more Machine Learning Recipes here: https://goo.gl/KewA03
Let's Write a Decision Tree Classifier from Scratch: Machine Learning Recipes #8
Decision Tree classifiers are intuitive, interpretable, and one of my favorite supervised learning algorithms. In this episode, I'll walk you through writing a Decision Tree classifier from scratch, in pure Python. I'll introduce concepts including Decision Tree Learning, Gini Impurity, and Information Gain. Understanding how to accomplish this was helpful to me when I studied Machine Learning for the first time, and I hope it will prove useful to you as well. You can find the code from this video here: https://goo.gl/UdZoNr
Classifying Handwritten Digits with TF.Learn - Machine Learning Recipes #7
Last time we wrote an image classifier using TensorFlow for Poets. This time, we'll write a basic one using TF.Learn. To make it easier for you to try this out, I wrote a Jupyter Notebook for this episode -- https://goo.gl/NNlMNu This is a great way to get all the dependencies installed and properly configured. I've linked some additional notebooks below you can try out, too.
Hello World - Machine Learning Recipes #1
Six lines of code is all it takes to write your first Machine Learning program. My name's Josh Gordon, and today I'll walk you through writing Hello World for Machine learning. In the first few episodes of the series, we'll teach you how to get started with Machine Learning from scratch. To do that, we'll work with two open source libraries, scikit-learn and TensorFlow. We'll see scikit in action in a minute. But first, let's talk quickly about what Machine Learning is and why it's important.